little confused on correct usage of (OR) operator.
trying to make following test:
if (today's close = yesterday's close OR
today's close -1 = yesterday's close)....continue code
if (close() = close(-1) || close()-1 = close(-1))
generates formula error
what am i missing?
trying to make following test:
if (today's close = yesterday's close OR
today's close -1 = yesterday's close)....continue code
if (close() = close(-1) || close()-1 = close(-1))
generates formula error
what am i missing?
Comment